.imageRotation{
	height:240px;
	width:320px;
	overflow:hidden;  /*--超出容器的所有元素都不可见--*/
	position:relative;  /*--相对定位--*/
	/*border:10px solid #eee;*/
	bodrer-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	}
/*-------------图片容器---------------*/
.imageBox{
	position:absolute;  /*--固定定位--*/
	height:240px;
	top:0px;
	left:0px;
	overflow:hidden;
	}
.imageBox img {
	display:block;
	height:240px;
	width:320px;
	float:left;
	border:none;
	}
/*-------------标题容器---------------*/

.titleBg{
	position:absolute;
	bottom:0px;
	width:320px;
	height:30px;
	overflow:hidden;
	background-color:#000;
	opacity:0.5;
	-moz-opacity:0.5;
	-webkit-opacity:0.5;
	filter:alpha(opacity=50);
	z-index:0;
}

.titleBox{
	position:absolute;
	bottom:0px;
	width:320px;
	height:30px;
	overflow:hidden;
	}
.titleBox p{
	position:absolute;
	bottom:-40px;
	width:300px;
	height:30px;
	margin:0px;
	padding:0px 10px;
	line-height:30px;
	z-index:1;
	border-top:1px solid #000;
	color:#fff;
	}
.titleBox p span{
	opacity:0.9;
	-moz-opacity:0.9;
	-webkit-opacity:0.9;
	filter:alpha(opacity=90);
}
.titleBox p.active{
	bottom:0px;
	}
/*-------------图标容器---------------*/
.icoBox{
	position:absolute;  /*--固定定位--*/
	bottom:9px;
	right:15px;
	width:76px;
	height:12px;
	text-align:center;
	line-height:40px;
	z-index:2;
	}
.icoBox span{
	display:block;
	float:left;
	height:12px;
	width:12px;
	margin-left:3px;
	overflow:hidden;
	background:url("../images/video/ico.png") 0px 0px no-repeat;
	cursor:pointer;
	}
.icoBox span.active {
	background-position:0px -12px;
	cursor:default;
	}